home *** CD-ROM | disk | FTP | other *** search
- OPT PREPROCESS
-
- MODULE 'feelin','libraries/feelin'
-
- PROC main()
- DEF c,w
-
- IF feelinbase := OpenLibrary('feelin.library',FV_VERSION)
- c := ClientObject,
- Child, w := WindowObject, FA_Window_Title,'Feelin : Sliders',
- Child, VGroup,
- Child, VGroup,
- Child, Prop(TRUE,10,2,0),
- Child, Prop(TRUE,10,2,0),
- Child, Prop(TRUE, 3,2,0),
- Child, Prop(TRUE, 3,2,0),
- End,
-
- Child, HGroup,
- Child, Prop(FALSE,10,2,0),
- Child, Prop(FALSE,10,2,0),
- End,
- End,
- End,
- End
-
- IF c
- F_DoA(w,FM_Notify,[FA_Window_CloseRequest,TRUE,FV_Notify_Client,2,FM_Client_ReturnID,FV_Client_Quit])
- F_Set(w,FA_Window_Open,TRUE)
-
- F_DoA(c,FM_Client_Run,NIL)
-
- F_DisposeObj(c)
- ENDIF
-
- CloseLibrary(feelinbase)
- ENDIF
- ENDPROC
-